container/list.List.root (field)
18 uses
container/list (current package)
list.go#L32: if p := e.next; e.list != nil && p != &e.list.root {
list.go#L40: if p := e.prev; e.list != nil && p != &e.list.root {
list.go#L49: root Element // sentinel list element, only &root, root.prev, and root.next are used
list.go#L55: l.root.next = &l.root
list.go#L56: l.root.prev = &l.root
list.go#L73: return l.root.next
list.go#L81: return l.root.prev
list.go#L86: if l.root.next == nil {
list.go#L146: return l.insertValue(v, &l.root)
list.go#L152: return l.insertValue(v, l.root.prev)
list.go#L181: if e.list != l || l.root.next == e {
list.go#L185: l.move(e, &l.root)
list.go#L192: if e.list != l || l.root.prev == e {
list.go#L196: l.move(e, l.root.prev)
list.go#L224: l.insertValue(e.Value, l.root.prev)
list.go#L233: l.insertValue(e.Value, &l.root)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |